/* Google Font Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0px;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px 10px 120px;
  background-color: #ffffff;
  filter: drop-shadow(0 0 0.2rem rgb(100, 100, 100));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.logo {
  width: 80%;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 80px;
}
.logo-img img {
  width: 100%;
}
.logo-name {
  margin-left: 30px;
  font-weight: 700;
  font-size: 20px;
  color: #28166f;
}
/*********************** TABS **************************/

.tabs {
  margin-left: 20%;
}
ul {
  display: flex;
  text-decoration: none;
  padding: 10px;
}

li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
  padding: 10px;
}
.nav-contact {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.icon {
  width: 10%;
  margin-right: 10px;
}
.phone-icon {
  width: 100%;
}

/*********************** drop down nav **************************/

.dropdown {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #555;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-content a:hover {
  background-color: #777;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*********************** Form **************************/

.container {
  display: flex;
  padding: 0 200px 0 00px;
  background-color: #efebe8;
  /* height: 85.8vh; */
  /* margin-top: 90px; */
}
.left {
  width: 70vw;
  height: 100vh;

  margin-left: 50px;
  background: url(../images/Request\ Call\ Back.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.right {
  margin-top: 3vw;
  margin-left: 5vw;
}
.orange {
  color: #ff7a01;
}
.form {
  margin-top: 1vh;
}
.form-container {
  margin: 0 30px 0 30px;
  padding: 0 30px 0 30px;
}

.heading {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

.form-container .form .input {
  color: #000000;
  width: 100%;
  background-color: #d9dcde;
  border: none;
  outline: none;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.form-container .form .input:focus {
  border-left: 5px solid #4387ff;
}

.form-container .form .textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #d9dcde;
  color: #000000;
  font-weight: normal;
  resize: none;
  max-height: 100px;
  margin-bottom: 20px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
  border-left: 5px solid #4387ff;
}

.form-container .form .button-container {
  display: flex;
  gap: 10px;
}

.form-container .form .button-container .send-button {
  flex-basis: 30%;
  background: #4387ff;
  padding: 10px;
  color: white;
  text-align: center;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}

.form-container .form .button-container .send-button:hover {
  background: transparent;
  border: 1px solid #4387ff;
  color: #4387ff;
}

.form-container
  .form
  .button-container
  .reset-button-container
  .reset-button:hover {
  background: #4387ff;
  color: #001925;
}

/*********************** FOOTER SECTION **************************/

.footer-wrapper {
  /* margin-top: 10%; */
  background: rgb(159 188 195 / 80%);
}
.footer-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 285px 40px 80px;
}

.footer-logo {
  width: 100%;
}

.footer-logo-img {
  width: 70px;
}
.footer-logo-img img {
  width: 100%;
}
.footer-logo-name {
  font-weight: 700;
  font-size: 20px;
}
.footer-title {
  font-weight: 700;
  font-size: 20px;
}
.text {
  font-weight: 500;
  margin-top: 10px;
}
.text-2 {
  font-weight: 500;
  margin-top: 35px;
}
.text-3 {
  font-weight: 500;
}
.service-1 {
  margin-top: 10px;
}

.footer-strip {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #000000;

}
.copyright {
  color: wheat;
  font-size: 14px;
  padding: 20px;
}
/* .plug {
  display: flex;
  justify-content: center;
 
  color: wheat;
  font-size: 12px;
} */
.back-button {
  padding: 0;
  font-size: 18px;
  color: #858484;
}
.back-arrow img {
  width: 2vw;
}
.back-arrow {
  display: flex;
  align-items: center;
}
